home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-07-15 | 3.5 KB | 96 lines | [TEXT/MPS ] |
- # Copyright © 1984-1988 by Apple Computer Inc. All rights reserved.
-
- # The user Make file. Customize this file to suit your particular application.
- # Remember, an MAMake file is not needed if you have a single file application
- # or the classic, magic 5 files application.
- #
- # Look at the sample MAMake files as a guide.
- # Open Basic Definitions to see what other Make variables exist.
-
- #---------------------------------------------------------------------------------------------------
- # List here the Application's Name
-
- AppName = DemoText
- Creator = 'APP1'
-
-
- #---------------------------------------------------------------------------------------------------
- # List any additional interfaces that your application is dependent on
- # If they change, your ( magic 1 or 5 ) sources recompile
-
- OtherInterfaces = "{SrcApp}DemoTextDump.h" ∂
- "{SrcApp}UDemoText.h"
-
-
- #---------------------------------------------------------------------------------------------------
- # By default the MABuild links the above libraries, the necessary
- # MacApp files, and the files UAppName.p.o and MAppName.p.o.
- # List any additional files that your program links with:
-
- OtherLinkFiles = "{ObjApp}DemoTextDump.h.o"
-
-
- #---------------------------------------------------------------------------------------------------
- # Specify any -sn (segment alias) linker options that you want included.
- # (Or to override MacApp's default mapping (in Basic Definitions))
-
- # OtherSegMappings = "-sn mySeg1=NewSeg -sn mySeg2=NewSeg"
-
-
- #---------------------------------------------------------------------------------------------------
- # List Rez files other than AppName.r that need to Rez'ed with the application
-
- # OtherRezFiles = "{SrcApp}MyTemplates.r"
-
-
- #---------------------------------------------------------------------------------------------------
- # List separately compiled resource files that the Rez file includes if you want to
- # include more or less than the standard set. Remember to "include" them.
- # OtherRsrcFiles = ∂
- # "{MAObj}Dialog.rsrc" ∂
- # "{MAObj}Printing.rsrc" ∂
- # "{ObjApp}MyResources.rsrc"
-
- #---------------------------------------------------------------------------------------------------
- # List the dependencies of the additional files (not covered by the
- # default rules) and special build rules, if any:
-
- # DemoTextDump.h
-
- "{ObjApp}DemoTextDump.h.o" ƒ "{SrcApp}DemoTextDump.h" ∂
- "{SrcApp}UDemoText.h"
- {MAEcho} {EchoOptions} "Compiling: DemoTextDump.h -- new dump file, this will take some time"
- CPlus -i {MACIncludes} "{SrcApp}DemoTextDump.h" -dumpc "{ObjApp}DemoTextDump.h.dump" ∂
- -o "{ObjApp}DemoTextDump.h.o" {CPlusOptions}
-
- # UDemoText.cp
-
- "{ObjApp}UDemoText.cp.o" ƒ "{SrcApp}UDemoText.cp" ∂
- "{SrcApp}UDemoText.h" ∂
- "{ObjApp}DemoTextDump.h.o" ∂
- {MacAppIntf} ∂
- {BuildingBlocksIntf}
- {MAEcho} {EchoOptions} "Compiling: UDemoText.cp"
- CPlus "{SrcApp}UDemoText.cp" -load "{ObjApp}DemoTextDump.h.dump" ∂
- -o "{ObjApp}UDemoText.cp.o" {CPlusOptions}
-
- # MDemoText.cp
-
- "{ObjApp}MDemoText.cp.o" ƒ "{SrcApp}MDemoText.cp" ∂
- {MacAppIntf} ∂
- {BuildingBlocksIntf}
- {MAEcho} {EchoOptions} "Compiling: MDemoText.cp"
- CPlus "{SrcApp}MDemoText.cp" -load "{ObjApp}DemoTextDump.h.dump" ∂
- -o "{ObjApp}MDemoText.cp.o" {CPlusOptions}
-
-
-
-
-
-
- #---------------------------------------------------------------------------------------------------
- # If you extend the view types template, list here the .r file containing the extension.
-
- #OtherViewTypesSrc =
-
-